home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / GraphicViewers / ViewGif2 / Source / Animator.old.h < prev    next >
Text File  |  1989-04-04  |  887b  |  44 lines

  1.  
  2. #import <objc/Object.h>
  3. #import <sys/time.h>
  4. #import <dpsclient/dpsclient.h>
  5.  
  6. @interface Animator : Object
  7. {
  8.     int mask;
  9.     DPSTimedEntry teNum;
  10.     int ticking;
  11.     double interval;
  12.     struct timeval entrytime;
  13.     double synctime;
  14.     double adapteddt;
  15.     double desireddt;
  16.     double t0;
  17.     double howOften;
  18.     id target;
  19.     SEL action;
  20.     int passcounter;
  21. }
  22.  
  23. + newChronon:(double )dt adaptation:(double )howoft target:(id )targ action:(SEL )act autoStart:(int )start eventMask:(int )eMask; 
  24. - resetRealTime; 
  25. -(double ) getSyncTime; 
  26. -(double ) getDoubleEntryTime; 
  27. -(double ) getDoubleRealTime; 
  28. -(double ) getDouble; 
  29. - adapt; 
  30. - setBreakMask:(int )eventMask; 
  31. -(int ) getBreakMask; 
  32. -(int ) isTicking; 
  33. -(int ) shouldBreak; 
  34. - setIncrement:(double )dt; 
  35. -(double ) getIncrement; 
  36. - setAdaptation:(double )oft; 
  37. - setTarget:(id )targ; 
  38. - setAction:(SEL )aSelector; 
  39. - startEntry; 
  40. - stopEntry; 
  41. - free; 
  42.  
  43. @end
  44.